home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_show / hello_world.e < prev    next >
Text File  |  1998-12-22  |  355b  |  20 lines

  1. class HELLO_WORLD
  2. --
  3. -- The "Hi World program" for SmallEiffel :-)   
  4. --   
  5. -- To compile type command : compile hello_world 
  6. -- Run with command : a.out   
  7. --
  8. -- To compile an optimized version type : compile hello_world -boost -O2
  9. --
  10. creation make
  11.    
  12. feature
  13.    
  14.    make is
  15.       do
  16.      io.put_string("Hello World.%N");
  17.       end;
  18.    
  19. end -- HELLO_WORLD
  20.